home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 6 / The Arsenal Files 6 (Arsenal Computer).ISO / telecom / tm421_4.zip / TBBS.SCR < prev    next >
Text File  |  1996-02-06  |  475b  |  25 lines

  1. ;
  2. ; TBBS.SCR is a log on script file for TBBS
  3. ;
  4.  
  5. string FirstName, LastName
  6. FirstName = "first"          ; put your first name
  7. LastName = "last"            ;  and last name here
  8.  
  9. SET AutoStop,On              ; stop script if carrier is lost
  10. Waitfor 0                    ; unlimited waiting time
  11.  
  12. Waitfor "First Name? "
  13. Put FirstName
  14.  
  15. Waitfor "Last Name? "
  16. Put LastName
  17.  
  18. Waitfor "Is this correct? "
  19. Put "y",
  20.  
  21. Waitfor "Enter Your Password: "
  22. Put "^&"
  23.  
  24.  
  25.